Using bitwise operators on > 32 bit integers?

Simply adding the flags will work provided you know for sure that each flag is a power of two, and that you don't go past 52 bits long (due to the amount a Double-precision float can hold, since that's what JS uses for numbers).

You cannot have more than 32, if you want to have bitwise operations. To perform bitwise operations, javascript converts the number value (which is held as an 8 byte float) to a 32-bit integer and then performs bitwise/bitshift operations on that value. It converts the resulting integer back to floating point before storing in the variable.

For more information see this Moz Dev Net article.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions